home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 December / Australian PC User - December 2003 (CD2).iso / software / apps / files / dwmx2k4.exe / Disk1 / data1.cab / Configuration_En / Commands / Insert_Excel.js < prev    next >
Encoding:
JavaScript  |  2003-09-05  |  514 b   |  20 lines

  1. //
  2. // Copyright 2000, 2001, 2002, 2003 Macromedia, Inc. All rights reserved.
  3. // ----------------------------------------------------
  4. //
  5. // Insert_Excel.js
  6.  
  7. function canAcceptCommand()
  8. {    
  9.     return (dw.getDocumentDOM() != null && dw.getFocus() == 'document' && dw.getDocumentDOM().getParseMode() == 'html' && dw.canImportExcel() > 0);
  10. }
  11.  
  12. function go()
  13. {
  14.    var fName = dw.getExcelDocument();
  15.    if ( fName != null && fName.length > 0 )
  16.       insertOfficeDoc( fName, null, false );
  17.  
  18.    return "";
  19. }
  20.